| Conditions | 2 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | const slide_speed = 0.4; |
||
| 22 | function remove_anchor(id) { |
||
| 23 | if (!window.location.hash) { |
||
| 24 | return; |
||
| 25 | } |
||
| 26 | |||
| 27 | id = id.replace(/_contents[,]*/, ''); |
||
| 28 | |||
| 29 | var string = window.location.hash, |
||
| 30 | regexp = new RegExp(id, 'g'); |
||
| 31 | string = string.replace(regexp, ''); |
||
| 32 | |||
| 33 | string = string.replace(/#[,]*/, '#'); |
||
| 34 | string = string.replace(/[,]*$/, ''); |
||
| 35 | string = string.replace(/,,/g, ','); |
||
| 36 | |||
| 37 | window.location.hash = string; |
||
| 38 | } |
||
| 39 | |||
| 43 |